home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 February / macformat-047.iso / Shareware Plus / Games / Sokoban 2.2 / Sample level collection < prev    next >
Encoding:
Text File  |  1996-04-24  |  1.2 KB  |  52 lines  |  [TEXT/ttxt]

  1. ; See the documentation for more information about making your
  2. ; own levels.  This file describes how to put more than one (in
  3. ; fact, up to 100) level in a text file.
  4.  
  5. ; Putting many levels in one text file for Sokoban:
  6. ; Separate the levels by blank lines, comments, or just titles.
  7. ; Comments (like this one) start with a semicolon “;” and go until
  8. ;  the end of the line.  They are completely ignored.
  9.  
  10. ; An optional title may be given in quotation marks like this
  11. "This is not a title"
  12. ; or like this
  13. 'Title the level'
  14. ; Remember to use dumb quotation marks ' and " instead of the
  15. ; smart ones “ ‘ ” ’.
  16. ;  The title will be displayed when you play the level.
  17.  
  18. ; If you give a level several titles, only the last one will
  19. ; be used.  The others are ignored.
  20. ; No comments are allowed within levels.
  21.  
  22. "Level 1"
  23.   ####
  24.   #@ #
  25. ###  ####
  26. #  .*   #
  27. # $.. $ #
  28. ### $####
  29.   #  #
  30.   ####
  31.  
  32.    #####
  33. ####.  ##
  34. # $.$.  #
  35. #@$# #$ #
  36. # $. .  #
  37. ####$#$ #
  38.   #. .  #
  39.   #######
  40. ; Comments are allowed between levels.
  41. ; So are blank lines
  42.  
  43. ;This level has no title, poor guy.
  44.    ######
  45. ####.  @#
  46. #  $$$  #
  47. #.##.##.#
  48. #   $   #
  49. #  $.# ##
  50. ###    #
  51.   ######
  52. ;The file ends where it ends, either with a level or a comment.